/*S手机端*/
.box20240901103924_wai_kuang{
	width: 100%;

	display: flex;
	flex-wrap: wrap;
	justify-content:center;	
}
.box20240901103924{
	width: 100%;
	display: grid;
	grid:"l1"; /*一列*/
	grid-template-columns: 1fr; /* 列宽:两列宽度相同，都是1fr */
	gap:32px;/*行列间距*/
}
/*设置列数据*/
.box20240901103924_1{
	width: 100%;
	font-size: 24px;
	color: #33577b;
	font-weight: bold;
	font-style: italic;
}
.box20240901103924_3 img{
	height: 85px;
}


/*E手机端*/

/*S非手机端*/
@media (min-width: 768px){
.box20240901103924 {
    display: grid;
    grid: "l1 l2";
    grid-template-columns: 3fr 2fr 1fr;
    /* gap: 32px; */
    column-gap: 32px;
    row-gap: 32px;
    align-items: center;
    justify-items: end;
}
}
